@charset "utf-8";
/* CSS Document */
.top-column {
    text-align: center; /* Center align the image */
}

.header-image {
    max-width: 100%; /* Ensure image does not exceed container width */
    height: auto; /* Maintain aspect ratio */
}

@media screen and (max-width: 768px) {
    .header-image {
        max-width: 80%; /* Adjust max-width for smaller screens */
    }
}
